projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b3cc67
)
Delay include of md5.h until after namespace cleaning.
author
Jason Rumney
<jasonr@gnu.org>
Tue, 5 Dec 2000 22:51:52 +0000
(22:51 +0000)
committer
Jason Rumney
<jasonr@gnu.org>
Tue, 5 Dec 2000 22:51:52 +0000
(22:51 +0000)
src/md5.c
patch
|
blob
|
history
diff --git
a/src/md5.c
b/src/md5.c
index 177f16e9a5d1ef97340c548321c7e3b9761de850..ea6dfc9cc03e7501f6a4bcec21286e899279f792 100644
(file)
--- a/
src/md5.c
+++ b/
src/md5.c
@@
-35,8
+35,6
@@
# endif
#endif
-#include "md5.h"
-
#ifdef _LIBC
# include <endian.h>
# if __BYTE_ORDER == __BIG_ENDIAN
@@
-53,6
+51,8
@@
# define md5_buffer __md5_buffer
#endif
+#include "md5.h"
+
#ifdef WORDS_BIGENDIAN
# define SWAP(n) \
(((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))